home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / POV-Ray 3.0.2 / Documentation / DOCDEMOS / LATHDEM1.POV < prev    next >
Encoding:
Text File  |  1997-01-23  |  293 b   |  23 lines  |  [TEXT/POV3]

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 10
  5.   location <1, 9, -50>
  6.   look_at <0, 2, 0>        
  7. }
  8.  
  9. light_source {
  10.   <20, 20, -20> color White 
  11. }
  12.  
  13. lathe {
  14.   linear_spline 
  15.   6, 
  16.   <0,0>, <1,1>, <3,2>, <2,3>, <2,4>, <0,4>
  17.   pigment { Blue }
  18.   finish { 
  19.     ambient .3      
  20.     phong .75 
  21.   }
  22. }
  23.